-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTPS test for sharded shuffle #1473
HTTPS test for sharded shuffle #1473
Conversation
This almost completes the setup for TLS/encryption infrastructure with one major exception - match key encryption keys are not re-used across shards. I have a PR almost ready, but decided to split that functionality to make PR somewhat revieweable
8db537b
to
4f0296f
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1473 +/- ##
==========================================
- Coverage 93.86% 93.84% -0.02%
==========================================
Files 235 235
Lines 42451 42438 -13
==========================================
- Hits 39845 39826 -19
- Misses 2606 2612 +6 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What changed in sharded_keygen
or is it more of a cosmetical change?
@@ -189,18 +185,39 @@ pub fn spawn_shards( | |||
.args(["-i", &id.to_string()]) | |||
.args(["--shard-index", &shard_index.to_string()]) | |||
.args(["--shard-count", &shard_count.to_string()]) | |||
.args(["--network".into(), config_path.join("network.toml")]) | |||
.arg("--disable-https") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this is the first time we have https tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for sharded world yes
|
This almost completes the setup for TLS/encryption infrastructure with one major exception - match key encryption keys are not re-used across shards. I have a PR almost ready, but decided to split that functionality to make PR somewhat revieweable